home *** CD-ROM | disk | FTP | other *** search
- package symantec.itools.db.pro;
-
- class RelViewInfo {
- private int _rvID;
- private int _recNum;
- private int _proxyID;
- private int _numRowsToRequest;
-
- RelViewInfo(int id, int recNum, int proxyid, int numRowsToRequest) {
- this._rvID = id;
- this._recNum = recNum;
- this._proxyID = proxyid;
- this._numRowsToRequest = numRowsToRequest;
- }
-
- int getID() {
- return this._rvID;
- }
-
- int getRecNum() {
- return this._recNum;
- }
-
- int getProxyID() {
- return this._proxyID;
- }
-
- int getNumRowsToRequest() {
- return this._numRowsToRequest;
- }
- }
-